home *** CD-ROM | disk | FTP | other *** search
- /////////////////////////////////////////////////////////////////////////
- // OFF.SLT - by Terry Robertson (October 1988) //
- // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ //
- // //
- // This script switches off Zmodem Autodownload. There is a second //
- // script called ON which switches Autodownload on again. //
- // //
- // For details of Autodownload see the TELIX manual - TELIX.DOC. //
- // //
- // This script is most useful when it is "attached" to a function //
- // key. //
- // //
- /////////////////////////////////////////////////////////////////////////
-
-
-
-
-
-
-
-
-
-
-
- Main()
-
- {
- int xpos, ypos;
-
- _zmod_auto = 0;
-
- xpos = getx();
- ypos = gety();
- pstraxy(" Auto Zmodem OFF",0,24,112);
- gotoxy(xpos, ypos);
-
- }
-
-